home *** CD-ROM | disk | FTP | other *** search
/ HPAVC / HPAVC CD-ROM.iso / RTANKSRC.ZIP / BULLET.H < prev    next >
Text File  |  1989-01-13  |  388b  |  23 lines

  1.  
  2. #define   BULLET struct bullet_type
  3. #define p_BULLET BULLET *
  4. #define   HITS   struct hit_type
  5.  
  6. HITS {
  7.    int hx,hy;
  8. };
  9.  
  10. BULLET {
  11.    BOOL  dead;
  12.    BYTE  bx,by;
  13.    BYTE  obx,oby;
  14.    int   incx, incy;
  15.    int   range;
  16.    int   misstile;
  17.    int   saveunder;
  18. };
  19.  
  20. void move_bullets(void);
  21. void init_bullets(void);
  22. void init_bullet(int x, int y, int xi, int yi, int r);
  23.